home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / Python 133 68K / Mac / Lib / test / tlist.py < prev    next >
Text File  |  1996-05-20  |  2KB  |  91 lines

  1. # Test List module.
  2. # Draw a window with all the files in the current folder.
  3. # double-clicking will change folder.
  4. #
  5. # This test expects Win, Evt and FrameWork (and anything used by those)
  6. # to work.
  7. #
  8. # Actually, it is more a test of FrameWork by now....
  9.  
  10. from FrameWork import *
  11. import Win
  12. import Qd
  13. import List
  14. import os
  15.  
  16. class ListWindow(Window):
  17.     def open(self, name, where):
  18.         self.where = where
  19.         r = (40, 40, 400, 300)
  20.         w = Win.NewWindow(r, name, 1, 0, -1, 1, 0x55555555)
  21.         r2 = (0, 0, 345, 245)
  22.         Qd.SetPort(w)
  23.         self.wid = w
  24.         self.list = List.LNew(r2, (0, 0, 1, 1), (0,0), 0, w, 0, 1, 1, 1)
  25.         self.filllist()
  26.         w.DrawGrowIcon()
  27.         self.do_postopen()
  28.         
  29.     def do_activate(self, onoff, evt):
  30.         self.list.LActivate(onoff)
  31.  
  32.     def do_update(self, *args):
  33.         self.list.LUpdate(self.wid.GetWindowPort().visRgn)
  34.         
  35.     def do_contentclick(self, local, modifiers, evt):
  36.         dclick = self.list.LClick(local, modifiers)
  37.         if dclick:
  38.             h, v = self.list.LLastClick()
  39.             file = self.list.LGetCell(1000, (h, v))
  40.             self.where = os.path.join(self.where, file)
  41.             self.filllist()
  42.  
  43.     def filllist(self):
  44.         """Fill the list with the contents of the current directory"""
  45.         l = self.list
  46.         l.LSetDrawingMode(0)
  47.         l.LDelRow(0, 0)
  48.         contents = os.listdir(self.where)
  49.         l.LAddRow(len(contents), 0)
  50.         for i in range(len(contents)):
  51.             l.LSetCell(contents[i], (0, i))
  52.         l.LSetDrawingMode(1)
  53.         l.LUpdate(self.wid.GetWindowPort().visRgn)
  54.  
  55.  
  56. class TestList(Application):
  57.     def __init__(self):
  58.         Application.__init__(self)
  59.         self.num = 0
  60.         self.listoflists = []
  61.         
  62.     def makeusermenus(self):
  63.         self.filemenu = m = Menu(self.menubar, "File")
  64.         self.newitem = MenuItem(m, "New window...", "O", self.open)
  65.         self.quititem = MenuItem(m, "Quit", "Q", self.quit)
  66.     
  67.     def open(self, *args):
  68.         import macfs
  69.         fss, ok = macfs.GetDirectory()
  70.         if not ok:
  71.             return
  72.         w = ListWindow(self)
  73.         w.open('Window %d'%self.num, fss.as_pathname())
  74.         self.num = self.num + 1
  75.         self.listoflists.append(w)
  76.         
  77.     def quit(self, *args):
  78.         raise self
  79.  
  80.     def do_about(self, id, item, window, event):
  81.         EasyDialogs.Message("""Test the List Manager interface.
  82.         Simple inward-only folder browser""")
  83.  
  84. def main():
  85.     App = TestList()
  86.     App.mainloop()
  87.     
  88. if __name__ == '__main__':
  89.     main()
  90.     
  91.